home *** CD-ROM | disk | FTP | other *** search
- package javax.swing.text;
-
- import javax.swing.Action;
- import javax.swing.KeyStroke;
-
- public interface Keymap {
- void addActionForKeyStroke(KeyStroke var1, Action var2);
-
- Action getAction(KeyStroke var1);
-
- Action[] getBoundActions();
-
- KeyStroke[] getBoundKeyStrokes();
-
- Action getDefaultAction();
-
- KeyStroke[] getKeyStrokesForAction(Action var1);
-
- String getName();
-
- Keymap getResolveParent();
-
- boolean isLocallyDefined(KeyStroke var1);
-
- void removeBindings();
-
- void removeKeyStrokeBinding(KeyStroke var1);
-
- void setDefaultAction(Action var1);
-
- void setResolveParent(Keymap var1);
- }
-